/* start global */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    font-family: 'Work Sans', sans-serif;
   
}


@media (min-width:400px){
    .container{
        width:380px;
    }
    .about_container{
        display: block;
    }
}
@media (min-width:600px){
    .container{
        width:577px;
    }
}
@media (min-width:990px){
    .container{
        width:970px;
    }
}
@media (min-width:1200px){
    .container{
        width:1170px;
    }
}
/* start header */
.navbar{
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
.brand{
    text-transform: capitalize;
    font-size: 25px;
    text-decoration: none;
    color:rgb(20, 166, 177);

}
.brand:hover{
    color:rgb(14, 18, 211);
}
.brand span{
    font-size: 30px;
    color: rgb(14, 18, 211);
}
.navbar-links ul{
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    display: flex;
    opacity: .9;
    width: 100%;


}
.navbar-links li{
    list-style: none;
  width: 100%
}
.navbar-links li a{
    display:block;
    padding: 15px;
    text-decoration: none;
    text-transform:capitalize;
    color: rgb(0, 0, 0);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.navbar-links ul li a:hover{
    padding-left: 25px;
    color:rgb(14, 18, 211);
    border-bottom: 2px solid rgb(14, 18, 211) ;
}

.navbar-links li a:hover{
    color:rgb(14, 18, 211);
}
.toggle-button{
    position: absolute;
    top:.75rem;
    right:1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}
.toggle-button .bar{
    height: 2px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

@media (max-width:600px){
    .toggle-button{
        display: flex;
    }
    .navbar-links{
        display: none;
    }
    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links ul{
        flex-direction: column;
        /* background-color: gray; */
    
    }
    .navbar-links li{
        text-align:center;
    }
    .navbar-links li a{
        padding: .5rem 1rem;
    }
    .navbar-links.active{
        display: flex;
    }
    .landing{

        display: block;
    }
}

/* landing */
section{
    background-image: url(BOARD.jpg);
        background-repeat: repeat-y;
    background-size:cover ;
    height:140vh;
    
}
.about_container{
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between ;
    margin-left: 30px;
    margin-right: 30px;
}
.image, .text{
    width: 47%;
}
.image{
    width: 500px;
}

img{
    width: 500px;
}

.about .text h1,.about .text p{
    margin: 0px;
    margin-left: 50px;
    
}
@media(max-width:600px){
     .text{
      width: 100%;
    }
    img{
        width: 360px;
    }
}



